home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
newsgroups
/
misc.20030409-20031118
/
000026_fdc@columbia.edu_Tue Apr 29 09:50:38 EDT 2003.msg
< prev
next >
Wrap
Text File
|
2003-11-18
|
2KB
|
54 lines
Article: 14242 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
From: fdc@columbia.edu (Frank da Cruz)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: ckermit on HPUX11.
Date: 29 Apr 2003 09:50:33 -0400
Organization: Columbia University
Lines: 37
Message-ID: <b8lvv9$nu6$1@watsol.cc.columbia.edu>
References: <c30aaa81.0304180518.3a35503b@posting.google.com> <b83isu$fa4$1@watsol.cc.columbia.edu> <3EA555B8.9090601@nyc.rr.com> <c30aaa81.0304290200.20917245@posting.google.com>
NNTP-Posting-Host: watsol.cc.columbia.edu
X-Trace: newsmaster.cc.columbia.edu 1051624234 18737 128.59.39.139 (29 Apr 2003 13:50:34 GMT)
X-Complaints-To: postmaster@columbia.edu
NNTP-Posting-Date: 29 Apr 2003 13:50:34 GMT
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14242
In article <c30aaa81.0304290200.20917245@posting.google.com>,
Eric <ericboniface@chez.com> wrote:
: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
: wrote in message news:<3EA555B8.9090601@nyc.rr.com>...
: > There are two libraries:
: >
: > libssl.a
: > libcrypto.a
: >
: > It sounds like you are failing to link to the libcrypto.a library.
:
: Strange as I compile the last openssl version without any error and I
: gave kermit make command the right path to the openssl lib.
: By the way I also get back an already compiled openssl library file
: for HPUX, and I still have the same message.
:
As Jeff said, it's the crypto library -- not openssl -- that is contains
the missing stuff. The hpux1100o+openssl target was sent in by somebody who
said it worked, but maybe something was lost in transit. Try this one:
hpux1100o+openssl:
MFLAGS='+ESlit +ESsfc' ; \
KFLAGS="-DCK_AUTHENTICATION -DCK_SSL -I/opt/zlib/include \
-DZLIB -DOPENSSL_097 $(SSLINC) $(KFLAGS) -DHPUX1100 -D__HP_CURSES \
-Aa -D_HPUX_SOURCE -DCK_ANSIC -DUTIMEH +O2 -Wl,-Fw $$MFLAGS" ; \
LIBS="$(SSLLIB) $(KRB5LIB) -lssl -lcrypto \
-L/opt/zlib/lib -lz" \
$(MAKE) "SHELL=/usr/bin/sh" "PATH=/opt/ansic/bin:$$PATH" xermit \
KTARGET=$${KTARGET:-$(@)} \
"CFLAGS = -DHPUX10 -DDIRENT -DSTERMIOX -DCK_DSYSINI -DHDBUUCP \
-DCK_CURSES -DCK_WREFRESH -DTCPSOCKET -DCK_REDIR -DRENAME -DFNFLOAT \
$$KFLAGS $$OFLAGS $(KFLAGS)" \
"LNKFLAGS=-s $(LNKFLAGS)" "LIBS = -lm -lcurses $$LIBS $(KLIBS)"
and please let us know whether it worked.
- Frank